home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Cream of the Crop 22
/
Cream of the Crop 22.iso
/
program
/
snpd9611.zip
/
XMS.H
< prev
next >
Wrap
C/C++ Source or Header
|
1996-11-24
|
606b
|
25 lines
/* +++Date last modified: 04-Nov-1996 */
/*
** XMS.H
**
** Header file for Extended Memory routines in XMS.C.
*/
#ifndef _XMS_H
#define _XMS_H
int XMSinit(void);
int XMSversion(void);
long XMScoreleft(void);
int XMSfree(unsigned int handle);
long XMSmemcpy(unsigned int desthandle, long destoff,
unsigned int srchandle, long srcoff, long n);
int DOStoXMSmove(unsigned int desthandle, long destoff,
const char *src, int n);
int XMStoDOSmove(char *dest, unsigned int srchandle, long srcoff, int n);
unsigned int XMSalloc(long size);
#endif